home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / EASYNET.SCR < prev    next >
Text File  |  1986-02-25  |  5KB  |  143 lines

  1. .EASYNET.SCR -- QMODEM Script created and tested at 1200
  2. .baud, by Brian Raub, on 2/25/86, using 1-800-EASYNET
  3.  
  4. .This is a standalone script to access EasyNet -- an online service
  5. .that provides easy access to many different online services. There's
  6. .no command language to learn; EasyNet asks you simple questions, then
  7. .translates your answers to 'native tongues' of ADP Network Services, 
  8. .BRS, DataTimes, DataSolve, Dialog, NewsNet, Pergamon InfoLine, Questel,
  9. .SDC, VU/TEXT, and other bibliographic and full-text search services.
  10.  
  11. .This script accesses EasyNet via a toll-free 800#. Each access requires
  12. .a credit card. The charges as of 2/24/86 are: 1.00 per access and 8.00
  13. .for each successful search. There is no charge for an unsuccessful search,
  14. .and no charge for online time. The FIRST TIME you call, your credit card
  15. .will be checked, and EasyNet will call you back for voice verification.
  16.  
  17. .For more details, contact EasyNet Customer
  18. .Service: 800-841-9553 (in PA 215-296-1793)
  19.  
  20. .=======================================================================
  21. .YOU **MUST** USE YOUR EDITOR OR WORD PROCESSOR TO CHANGE:
  22. .  [1] Your baud rate (SETCOMM C if 300 baud, SETCOMM F if 1200 baud)
  23. .  [2] Your credit card info (three questions: card#, name, exp. date)
  24. .  [3] Your VOICE phone# for verification each time you call (actual
  25. .      voice verification will occur after the first call only)
  26. .  [4] A credit verification# which is used ONLY for your second call
  27. .      (shown below as 9999)
  28. .=======================================================================
  29.  
  30. .NOTE: Use 300 or 1200 baud, 8-N-1; charges are not speed-dependent. For
  31. .300 baud the next command should be SETCOMM C; for 1200, use SETCOMM F
  32. SETCOMM F
  33.  
  34. .Set key parameters:
  35. TURNOFF LINEFEED ECHO
  36. TURNON XON/XOFF
  37.  
  38. .In case of failure, goto label HALT:
  39. TIMEOUT 60 HALT
  40.  
  41. NOTE ** Logon to EasyNet **
  42.  
  43. ./////////////////////////////////////////////////////
  44. .TO MAKE THIS A LINKED SCRIPT, ADD EASYNET & PHONE# TO 
  45. .YOUR QMODEM PHONE DIRECTORY, THEN DELETE THIS SECTION
  46.  
  47. .Dial 1-800-EASYNET using Hayes command: 
  48. SEND "ATDT 1-800-327-9638{"
  49.  
  50. .Wait for modem to connect
  51. WAITFOR "CONNECT"
  52. ./////////////////////////////////////////////////////
  53.  
  54. .Easynet requests your Visa, Mastercard, American Express or EasyNet Account#
  55. WAITFOR "->"
  56.  
  57. .[2] Send your credit card account# (spaces not necessary, but OK)
  58. SEND "0000 0000 0000 0000{"
  59.  
  60. .EasyNet asks for your name as it appears on the card:
  61. WAITFOR "Card Holder's Name:"
  62. WAITFOR "->"
  63.  
  64. .[2] Reply with your name as it appears on the card:
  65. SEND "John Q. Public{"
  66.  
  67. .EasyNet requests card expiration date:
  68. WAITFOR "Card Expiration Date:"
  69. WAITFOR "Numeric month and year, please."
  70. WAITFOR "->"
  71.  
  72. .[2] Reply with expiration month/year:
  73. SEND "1/86{"
  74.  
  75. .EasyNet requests your phone# for verification:
  76. WAITFOR "Please enter the area code and phone number"
  77. WAITFOR "where you may be reached in the next few minutes."
  78. WAITFOR "e.g. 111-555-1212"
  79. WAITFOR "->"
  80.  
  81. .[3] Reply with your VOICE phone number -- EasyNet will call you at
  82. .this number to verify credit info, the FIRST time you call EasyNet
  83. SEND "111-555-1212{"
  84.  
  85. .EasyNet displays information for verification:
  86. WAITFOR "Is this correct? (Yes/No) ->"
  87.  
  88. .Reply with Y for yes:
  89. SEND "Y{"
  90.  
  91. .EASYNET WILL HANG UP HERE AFTER THE FIRST CALL, THEN CALL YOU TO 
  92. .VERIFY YOUR CREDIT CARD INFORMATION. THEN YOU MUST EDIT [3] BELOW....
  93.  
  94. .==============
  95. .READ CAREFULLY
  96. .==============
  97. .[4] The SECOND time you call -- and never again -- you must enter a credit 
  98. .verification number that EasyNet gives you by phone. Therefore you must 
  99. .enter that number into this script AFTER the FIRST call, then DELETE the 
  100. .next two lines of this script AFTER the SECOND call: 
  101. WAITFOR "->"
  102. SEND "9999{"
  103.  
  104. .EasyNet asks for
  105. .1      PRINTER only 
  106. .2      VIDEO only 
  107. .3      PRINTER and VIDEO 
  108. WAITFOR "Type 1, 2 or 3 and hit (RETURN) key!" 
  109. WAITFOR "->" 
  110.  
  111. .Reply 1 for continuous display
  112. SEND "1{"
  113.  
  114. .EasyNet requests printer/screen width:?
  115. WAITFOR "How many characters per line ?"
  116. WAITFOR "EX: 40, 64, 72, 80, 132"
  117. WAITFOR "->"
  118.  
  119. .Reply with 80 or your printer/screen width:
  120. SEND "80{"
  121.  
  122. .Now turn on your printer:
  123. TURNON PRINT
  124.  
  125. NOTE ** 3 bells ring when EasyNet is ready for your command **
  126. WAITFOR "Total charges thus far :"
  127. WAITFOR "->"
  128.  
  129. .SUCCESS! Beep 3x, discontinue script, return control to your keyboard:
  130. BEEP 400
  131. BEEP 400
  132. BEEP 400
  133. RETURN
  134.  
  135. .In case of failure:
  136. HALT:
  137. NOTE ** LOGON TO EasyNet FAILED -- EDIT SCRIPT OR TRY LATER ** 
  138. BEEP 400
  139. BEEP 200
  140. HANGUP
  141. RETURN
  142.